home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-05-20 | 2.2 KB | 69 lines | [TEXT/ttxt] |
- diff -c3 -o -r ./change3.doc \povray3/change3.doc
- *** ./change3.doc Tue May 20 16:38:54 1997
- --- \povray3/change3.doc Tue May 20 17:16:46 1997
- ***************
- *** 1,5 ****
- --- 1,9 ----
- This file is a historical record of changes to POV-Ray 3.0 as we develop it.
-
- + 3.02 05/20/97 Chris Young
- + Changes version number to 3.02
- + Fixes ttf kern crash reported by Eduard
- +
- 3.01b 05/10/97 Chris Young
- Fixed illegal number of intersections bug.
- Fixed queue overflow bug
- diff -c3 -o -r ./source/optout.h \povray3/source/optout.h
- *** ./source/optout.h Tue May 20 16:37:56 1997
- --- \povray3/source/optout.h Tue May 20 17:04:46 1997
- ***************
- *** 33,39 ****
-
- /* These are used by OPTOUT.C and the machine specific modules */
-
- ! #define POV_RAY_VERSION "3.01b"
-
- /* This message is for the personal distribution release. */
-
- --- 33,39 ----
-
- /* These are used by OPTOUT.C and the machine specific modules */
-
- ! #define POV_RAY_VERSION "3.02"
-
- /* This message is for the personal distribution release. */
-
- diff -c3 -o -r ./source/truetype.c \povray3/source/truetype.c
- *** ./source/truetype.c Sun Nov 24 16:34:26 1996
- --- \povray3/source/truetype.c Tue May 20 17:03:52 1997
- ***************
- *** 1176,1182 ****
- /* Read in the number of kerning tables */
-
- kern_table->nTables = READUSHORT(ffile->fp);
- !
- #ifdef TTF_DEBUG
- Debug_Info("\nKerning table:\n", kern_table_offset);
- Debug_Info("Offset: %ld\n", kern_table_offset);
- --- 1176,1183 ----
- /* Read in the number of kerning tables */
-
- kern_table->nTables = READUSHORT(ffile->fp);
- ! kern_table->tables = NULL; /*<==[esp] added (in case nTables is zero)*/
- !
- #ifdef TTF_DEBUG
- Debug_Info("\nKerning table:\n", kern_table_offset);
- Debug_Info("Offset: %ld\n", kern_table_offset);
- ***************
- *** 1211,1216 ****
- --- 1212,1220 ----
- Debug_Info("%s\n", (kern_table->tables[i].coverage & KERN_OVERRIDE ?
- " Override" : "" ));
- #endif
- +
- + kern_table->tables[i].kern_pairs = NULL; /*<==[esp] added*/
- + kern_table->tables[i].nPairs = 0; /*<==[esp] added*/
-
- if ((kern_table->tables[i].coverage >> 8) == 0)
- {
-